home *** CD-ROM | disk | FTP | other *** search
/ Software 2000 / Software 2000 Volume 1 (Disc 1 of 2).iso / utilities / u136.dms / in.adf / VD0 / Mountlist < prev    next >
Encoding:
Text File  |  1978-08-30  |  4.5 KB  |  134 lines

  1. /*
  2. **   Copyright 1987 By Perry S. Kivolowitz (ASDG Incorporated) All Rights
  3. **   Reserved to Author. NOT IN THE PUBLIC DOMAIN.
  4. **
  5. **   The contents of this file:
  6. **
  7. **   May not be distributed by any commercial software or hardware vendor.
  8. **   May not be sold under any guise.
  9. **   Must (please) contain this and copyright information above and below.
  10. **
  11. **   Specifically:
  12. **
  13. **   No maker or seller of Amiga  expansion  hardware or software may dis-
  14. **   tribute this  software in  *any* way. No  reseller  of  public domain
  15. **   software may distribute this software either (as this is *NOT* in the
  16. **   public domain).
  17. **
  18. **   The only acceptable means of  distribution is by networks, bbs's, fnf,
  19. **   and by (non-profit) user groups. Distribution MUST BE FREE (except for
  20. **   media costs plus a token amount covering only shipping and handling).
  21. **
  22. **   Your use,  storage  and or duplication  constitutes acceptance of this
  23. **   agreement.
  24. **
  25. **   ASDG Incorporated cannot be liable for  the use or misuse of this pro-
  26. **   duct.
  27. **
  28. **   If you use this software and wish to  become a registered owner please
  29. **   send $10 to:
  30. **                ASDG Incorporated
  31. **                280 River Road, Suite 54a
  32. **                Piscataway N.J.
  33. **                08854
  34. **                Phone 0101-201-540-9670
  35. **
  36. **   Can't say there's much material benefit from being a registered owner
  37. **   but you will feel better knowing  that you helped defray the recover-
  38. **   able ram  disk's  development  costs.  Also, we will answer technical
  39. **   questions from registered users only and will  distribute new product
  40. **   news to same.
  41. */
  42.  
  43. /*
  44. **   Changing Any MountList Parameters Except As Noted Below Will Cause
  45. **   The Recoverable Ram Disk To Cease To Function.
  46. */
  47.  
  48. /*
  49. **   IF YOU HAVE SOME FAST RAM:
  50. **
  51. **      Make BufMemType equal to 5.
  52. **      Set HighCyl appropriately.
  53. **
  54. **   IF YOU HAVE ONLY CHIP RAM (NO RAM EXPANSION):
  55. **
  56. **      Make BufMemType equal to 3.
  57. **      Set HighCyl appropriately.
  58. **
  59. **   Increasing the value of Buffers will actually slow down the ram disk.
  60. **
  61. **   The BufMemType flag is actually  the second parameter of the AllocMem
  62. **   calls the kernel will make to  allocate  internal buffers. Making the
  63. **   value places the buffers in Fast ram. A value of 3 places the buffers
  64. **   in Chip ram.
  65. */
  66.  
  67. /*
  68. **   Setting HighCyl
  69. **
  70. **   HighCyl determines the maximum size of the recoverable ram disk. It
  71. **   defines the number of tracks there are in the disk. Each track con-
  72. **   tains 16 512 byte blocks (or 8K of information).  Changing  HighCyl
  73. **   and rebooting will cause a fresh (empty) recoverable ram disk to be
  74. **   created.
  75. **
  76. **   It is better to run out  of  space on the recoverable ram disk than
  77. **   to run out of memory. That  is,  don't  set  HighCyl to make a disk
  78. **   larger than your total amount of memory.
  79. **
  80. **   Remember, the ASDG  Recoverable  Ram  Disk does full dynamic memory
  81. **   management. That is, HighCyl is really just a Maximum size. Setting
  82. **   HighCyl to a large number does *NOT* mean you automatically lose  a
  83. **   lot of memory.
  84. **
  85. **   HighCyl MUST BE ODD!
  86. **
  87. **   Suggested HighCyl Values:
  88. **
  89. **   Fast Ram Installed   HighCyl Value   Max Ram Disk Size
  90. **
  91. **      0                        15            128k
  92. **      512k                     31            256k
  93. **      1Mbyte                63-95            512k-768k
  94. **      2Mbytes             127-191            1Mbyte-1.5Mbytes
  95. **      4Mbytes             255-383            2Mbytes-3Mbytes
  96. **      8Mbytes           Anything less
  97. **                          than 1024
  98. **
  99. **   REMEMBER: If you have  Fast  Ram  that  autoconfigs, some amount of
  100. **   it will be used by the operating system even before the recoverable
  101. **   ram disk starts  up. So, you've  actually  got about 100K less than
  102. **   you think.
  103. **
  104. **   NOTE: Using Addbuffers with the ASDG Recoverable Ram Disk will
  105. **   slow the ram disk's performance.
  106. **
  107. */
  108.  
  109. /*
  110. **   Copyright 1987 By Perry S. Kivolowitz (ASDG Incorporated) All Rights
  111. **   Reserved to Author. NOT IN THE PUBLIC DOMAIN.
  112. **
  113. **   The contents of this file:
  114. **
  115. **   May not be distributed by any commercial software or hardware vendor.
  116. **   May not be sold under any guise.
  117. **   Must (please) contain this and copyright information above and below.
  118. **
  119. */
  120.  
  121. VD0:       Device = asdg.vdisk.device
  122.            Unit   = 1
  123.            Flags  = 0
  124.            Surfaces  = 1
  125.            BlocksPerTrack = 16
  126.            Priority = 5
  127.            Reserved = 2
  128.            Interleave = 0
  129.            LowCyl = 0
  130.            HighCyl = 31
  131.            Buffers = 5
  132.            BufMemType = 5
  133. #
  134.